From ad4292993b15b6076dc5a85b098d2e3bb8f47585 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Tue, 27 Jan 2009 16:41:09 +0000 Subject: [PATCH] acpi: Neaten reboot messages. Signed-off-by: Keir Fraser --- xen/drivers/acpi/reboot.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/drivers/acpi/reboot.c b/xen/drivers/acpi/reboot.c index 95edc1eb32..69ea8afeea 100644 --- a/xen/drivers/acpi/reboot.c +++ b/xen/drivers/acpi/reboot.c @@ -21,7 +21,7 @@ void acpi_reboot(void) * on a device on bus 0. */ switch (rr->space_id) { case ACPI_ADR_SPACE_PCI_CONFIG: - printk("Resetting with ACPI PCI RESET_REG."); + printk("Resetting with ACPI PCI RESET_REG.\n"); /* Write the value that resets us. */ pci_conf_write8(0, (rr->address >> 32) & 31, @@ -31,7 +31,7 @@ void acpi_reboot(void) break; case ACPI_ADR_SPACE_SYSTEM_MEMORY: case ACPI_ADR_SPACE_SYSTEM_IO: - printk("ACPI MEMORY or I/O RESET_REG."); + printk("Resetting with ACPI MEMORY or I/O RESET_REG.\n"); acpi_hw_low_level_write(8, reset_value, rr); break; } -- 2.30.2